home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / Fresco / build / Unix / config / util / Makefile.ini < prev    next >
Encoding:
Makefile  |  1995-07-12  |  539 b   |  21 lines

  1. # $XConsortium: Makefile.ini,v 1.2 94/04/17 14:55:28 gildea Exp $
  2. #
  3. # A way to get lndir built the first time, before you have imake up
  4. # and running.  You may well have to specify OSFLAGS=-D<something> to
  5. # get it to compile, which values are embedded in config files.  What
  6. # you would pass as BOOTSTRAPCFLAGS might work.
  7.  
  8. OSFLAGS = 
  9. CC = cc
  10. CDEBUGFLAGS = -O
  11. INCLUDES = -I.
  12. CFLAGS = $(OSFLAGS) $(CDEBUGFLAGS) $(INCLUDES)
  13. SHELL = /bin/sh
  14. RM = rm -f
  15. LN = ln -s
  16.  
  17. lndir:
  18.     $(LN) ../../include X11
  19.     $(CC) -o lndir $(CFLAGS) lndir.c
  20.     $(RM) X11
  21.